home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / CH10 / creator / debugger / DebuggerWatchDlg.gui < prev   
Text File  |  2005-11-23  |  2KB  |  93 lines

  1. //--- OBJECT WRITE BEGIN ---
  2. new GuiControl(DebuggerWatchDlg) {
  3.     profile = "GuiDialogProfile";
  4.     horizSizing = "right";
  5.     vertSizing = "bottom";
  6.     position = "0 0";
  7.     extent = "640 480";
  8.     minExtent = "8 8";
  9.     visible = "True";
  10.     setFirstResponder = "False";
  11.     modal = "True";
  12.     helpTag = "0";
  13.  
  14.     new GuiWindowCtrl() {
  15.         profile = "GuiWindowProfile";
  16.         horizSizing = "right";
  17.         vertSizing = "bottom";
  18.         position = "220 180";
  19.         extent = "200 108";
  20.         minExtent = "8 8";
  21.         visible = "True";
  22.         setFirstResponder = "False";
  23.         modal = "True";
  24.         helpTag = "0";
  25.         text = "Add a Watch Expression:";
  26.         resizeWidth = "True";
  27.         resizeHeight = "True";
  28.         canMove = "False";
  29.         canClose = "False";
  30.         canMinimize = "False";
  31.         canMaximize = "False";
  32.         minSize = "50 50";
  33.             opaque = "true";
  34.  
  35.         new GuiTextCtrl() {
  36.             profile = "GuiTextProfile";
  37.             horizSizing = "right";
  38.             vertSizing = "bottom";
  39.             position = "20 28";
  40.             extent = "88 18";
  41.             minExtent = "8 8";
  42.             visible = "True";
  43.             setFirstResponder = "False";
  44.             modal = "True";
  45.             helpTag = "0";
  46.             text = "Enter the Variable:";
  47.         };
  48.         new GuiTextEditCtrl(WatchDialogExpression) {
  49.             profile = "GuiTextEditProfile";
  50.             horizSizing = "right";
  51.             vertSizing = "bottom";
  52.             position = "20 44";
  53.             extent = "160 18";
  54.             minExtent = "8 8";
  55.             visible = "True";
  56.             setFirstResponder = "False";
  57.             modal = "True";
  58.             altCommand = "DbgWatchDialogAdd();";
  59.             helpTag = "0";
  60.             historySize = "0";
  61.         };
  62.         new GuiButtonCtrl() {
  63.             profile = "GuiButtonProfile";
  64.             horizSizing = "right";
  65.             vertSizing = "bottom";
  66.             position = "56 80";
  67.             extent = "40 16";
  68.             minExtent = "8 8";
  69.             visible = "True";
  70.             setFirstResponder = "False";
  71.             modal = "True";
  72.             command = "DbgWatchDialogAdd();";
  73.             helpTag = "0";
  74.             text = "Add";
  75.         };
  76.         new GuiButtonCtrl() {
  77.             profile = "GuiButtonProfile";
  78.             horizSizing = "right";
  79.             vertSizing = "bottom";
  80.             position = "104 80";
  81.             extent = "40 16";
  82.             minExtent = "8 8";
  83.             visible = "True";
  84.             setFirstResponder = "False";
  85.             modal = "True";
  86.             command = "Canvas.popDialog(DebuggerWatchDlg);";
  87.             helpTag = "0";
  88.             text = "Cancel";
  89.         };
  90.     };
  91. };
  92. //--- OBJECT WRITE END ---
  93.